-- card: 9797 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 10579 -- name: test 1 ----- HyperTalk script ----- on openCard global inprogress if inprogress is false then show cd fld "instruction 1" hide cd fld "ClicktoContinue" show cd btn "Check my Answers" repeat with f = 15 to 22 hide cd fld f end repeat repeat with x = 1 to 4 hide cd fld ("responses" && x) end repeat end openCard on closeCard global maploc, cardloc put word 1 of the short name of this card into maploc put word 2 of the short name of this card into cardloc push card end closeCard -- part 1 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=367 top=96 right=115 bottom=445 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 1 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 2 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=368 top=128 right=145 bottom=447 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 2 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 3 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=317 top=160 right=177 bottom=412 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 3 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 4 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=368 top=206 right=224 bottom=463 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 4 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 6 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=4 top=45 right=121 bottom=106 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 1 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 8 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=0 top=140 right=199 bottom=112 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 2 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 9 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=3 top=166 right=244 bottom=105 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 3 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 10 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=1 top=203 right=265 bottom=117 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 4 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 7 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=106 top=30 right=116 bottom=234 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Responses -- part 13 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=369 top=19 right=105 bottom=385 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Answers -- part 14 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=10 top=12 right=67 bottom=28 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: our Answers -- part 15 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=34 top=12 right=100 bottom=87 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: memoList -- part 18 (button) -- low flags: 00 -- high flags: A003 -- rect: left=132 top=312 right=339 bottom=274 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: Check my answers ----- HyperTalk script ----- on mouseUp global memolist, testNumber, inProgress put "" into memolist set the cursor to busy put 1 into r repeat with r = 1 to 4 --the number of lines in cd fld "Our Answers" if line r of cd fld "your Responses" is "" then answer "You're not done, yet!" with "Ooops!" put true into tryAgain exit mouseup else put 1 into rLine put false into tryAgain repeat with r = 1 to 4 --the number of lines of cd fld "Our Answers" if line rLine of cd fld "Your Answers" is in line rLine of cd fld "Our Answers" then put true into okAnswer else put false into okAnswer end if if okAnswer then put true into line rline of cd fld "memoList" put true into item r of memolist else put false into line rline of cd fld "memolist" put false into item r of memolist end if add 1 to rLine end repeat end if end repeat if tryAgain is false then set cursor to hand hide cd btn "Check my answers" show cd fld "clicktocontinue" end if put "1" into testnumber repeat with i = 1 to 4 --the number of lines of cd fld "MemoList" put ("review" && i) into theButton set the hilite of cd btn theButton to true get line i of cd fld "MemoList" if it is true then put ("comment" && i && "true") into theComment show cd fld theComment else put ("comment" && i && "false") into theComment show cd fld theComment end if wait until the mouseclick set the hilite of cd btn theButton to false hide cd fld theComment end repeat hide cd fld "clicktocontinue" if cd fld "MemoList" contains "False" then answer "Do you want to try again?" with "Yes" or "No" if it is "Yes" then put empty into cd fld "memolist" put true into inProgress show cd btn "Check my Answers" send opencard exit mouseup else ScoreReview end if else ScoreReview end if end mouseUp -- part 24 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=365 top=95 right=113 bottom=442 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 1 ----- HyperTalk script ----- on mouseUp hide card field "instruction 1" toggleResponses end mouseUp -- part 25 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=369 top=128 right=145 bottom=446 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 2 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 26 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=318 top=160 right=177 bottom=410 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 3 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 27 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=366 top=208 right=224 bottom=463 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 4 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 29 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=170 top=3 right=88 bottom=412 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 false -- part 30 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=30 top=13 right=93 bottom=289 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 true -- part 31 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=100 top=163 right=244 bottom=385 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 false -- part 32 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=100 top=113 right=193 bottom=349 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 true -- part 34 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=66 top=194 right=256 bottom=300 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 false -- part 35 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=23 top=196 right=294 bottom=356 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 true -- part 36 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=26 top=136 right=218 bottom=334 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 4 false -- part 37 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=25 top=5 right=89 bottom=333 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 4 true -- part 41 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=59 top=312 right=341 bottom=277 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 157 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: ClicktoContinue -- part 45 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=0 top=20 right=331 bottom=129 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: instruction 1 ----- HyperTalk script ----- on mouseup hide me end mouseup -- part contents for background part 10 ----- text ----- Features and Advantages #1. -- part contents for background part 6 ----- text ----- The Macintosh Display Card 8•24 is an card. This video card is capable of displaying grays. The video card supports Apple for interlaced displays. The Macintosh Display Card 4•8 can be a Macintosh Display Card 8•24. -- part contents for background part 4 ----- text ----- Macintosh Display Card 4•8 and 8•24 -- part contents for background part 5 ----- text ----- Training Evaluation -- part contents for card part 6 ----- text ----- powerful 256-color true color 8-bit/24-bit -- part contents for card part 8 ----- text ----- 16.7 million 256 16 -- part contents for card part 9 ----- text ----- color convolution QuickDraw standards -- part contents for card part 10 ----- text ----- traded for upgraded to accelerated to -- part contents for card part 14 ----- text ----- 4 2 2 2 -- part contents for card part 29 ----- text ----- You should review the Product Description section. -- part contents for card part 30 ----- text ----- You're absolutely correct. That is what the 8 and 24 stand for. -- part contents for card part 31 ----- text ----- No. You should review the Product Description and Technology sections. -- part contents for card part 32 ----- text ----- You’re right. The Display cards can display 256 grays on all Apple Monitors -- part contents for card part 34 ----- text ----- Not quite, but a good guess. -- part contents for card part 35 ----- text ----- Correct! These Display cards supports Apple Convolution for interlaced displays. -- part contents for card part 36 ----- text ----- You may need to study the Product Description more closely. -- part contents for card part 37 ----- text ----- You seem to have studied the Product Description section well. -- part contents for card part 41 ----- text ----- Click the mouse to continue. -- part contents for card part 45 ----- text ----- Instructions: (click on this text to hide it) 1. Click on the blank line. A list of choices appears. 2. Click on the choice you want, it appears in the sentence. You can change any of your choices by clicking on it, then selecting another choice. 3. When you’ve completed the entries, click on the “Check my Answers” button. During the review, you’ll find out whether you made the correct choices. Afterwards, you can try again or go back to the menu for this section.